* sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it
authorJim Blandy <jimb@redhat.com>
Wed, 16 Jun 1993 20:02:58 +0000 (20:02 +0000)
committerJim Blandy <jimb@redhat.com>
Wed, 16 Jun 1993 20:02:58 +0000 (20:02 +0000)
disables the meta key.

src/sysdep.c

index 194ec0cea507326eeab132823881c4d52a67992d..e696cb3d352588bb543447b6e5a9dfb298cbf41f 100644 (file)
@@ -1168,6 +1168,11 @@ init_sys_modes ()
 #endif
 
       tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | old_tty.lmode;
+#ifdef ultrix
+      /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
+        anything, and leaving it in breaks the meta key.  Go figure.  */
+      tty.lmode &= ~LLITOUT;
+#endif
       
 #ifdef BSD4_1
       lmode = tty.lmode;